Problem
Time limit : 3sec / Memory limit : 256MB
题意:
给出$n$个数,其中有一个数会出现两次,其余数只出现一次,问不同长度且不同的子串的数量。取模$10^9+7$
Solution
简单容斥。求出所有情况,减去重复情况.
Code:
1 |
|
Beyond the spectacle of the sky
Time limit : 3sec / Memory limit : 256MB
题意:
给出$n$个数,其中有一个数会出现两次,其余数只出现一次,问不同长度且不同的子串的数量。取模$10^9+7$
简单容斥。求出所有情况,减去重复情况.
Code:
1 | #include <bits/stdc++.h> |